@charset "utf-8";
*{
    margin: 0;
    padding: 0;
}
:root {
	--FontBaseSize: max(16px, 1.2vw);
    --FontMenuSize: calc(var(--FontBaseSize)/16*18);
    --FontColor: aliceblue;
    font-family: myriad-pro, sans-serif;
    font-style: normal;
    font-size: var(--FontBaseSize);
    box-sizing: border-box;
    background: black;
    color: var(--FontColor);
	--ElementWidth: 40vw;
}
html {
    overflow: hidden auto;
}
#SiteContainer {
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
	width: 100vw
}
header {
    width: 100%;
    height: 10vh;
    background: hsla(0, 0%, 25%, 0.75);
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}
header img {
    height: 8vh;
    margin-left: 1vw;
}
header div img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
nav {
    width: 60vw;
}
nav img {
    display: none;
	height: 4vh;
	width: auto;
	position: absolute;
	right: 1vw;
	top: 3vh;
}
nav ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    list-style: none;
    font-size: var(--FontMenuSize);
    /*font-weight: bold;*/
    text-transform: uppercase;
    z-index: 2;
}
nav ul li {
    flex: 1 1 auto;
    padding: 1vh 0 .25vh;
    text-align: center;
    align-content: center;
    align-items: center;
    justify-content: center;
    position: relative;
    border: solid transparent 1px;
    z-index: 2;
}
nav ul li:hover {
    border: solid hsla(0, 0%, 100%, 0.70) 1px;
}
nav ul li:hover ul {
    display: inline-flex;
}
nav ul li a {
    color: var(--FontColor);
    text-decoration: none;
}
nav ul li ul {
    margin: auto;
    display: none;
    flex-flow: column wrap;
    list-style: none;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
}
nav ul li ul li {
    flex: 1 1 auto;
    background: hsla(0, 0%, 25%, .75);
    border: solid hsla(0, 0%, 100%, .70) 1px;
}
main {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
}
h1 {
    display: block;
    font-size: calc(var(--FontBaseSize)*2);
    font-weight: bold;
    line-height: calc(var(--FontBaseSize)*2*1.5);
}
h2 {
    display: block;
    font-size: calc(var(--FontBaseSize)*1.5);
    font-weight: bold;
    line-height: calc(var(--FontBaseSize)*1.5*1.5);
}
h3 {
    display: block;
    font-size: calc(var(--FontBaseSize)*1.17);
    font-weight: bold;
    line-height: calc(var(--FontBaseSize)*1.17*1.5);
}
h4 {
    display: block;
    font-size: calc(var(--FontBaseSize)*1);
    font-weight: bold;
    line-height: calc(var(--FontBaseSize)*1*1.5);
}
h5 {
    display: block;
    font-size: calc(var(--FontBaseSize)*.83);
    font-weight: bold;
    line-height: calc(var(--FontBaseSize)*.83*1.5);
}
h6 {
    display: block;
    font-size: calc(var(--FontBaseSize)*.67);
    font-weight: bold;
    line-height: calc(var(--FontBaseSize)*.67*1.5);
}
p {
    display: block;
    font-size: calc(var(--FontBaseSize)*1);
    line-height: calc(var(--FontBaseSize)*1*1.5);
}
a, a:visited{
    color: var(--FontColor);
}
.flex{
	width: 95%;
	margin: auto;
	display: flex;
	justify-content: space-evenly;
	align-content: center;
	align-items: center;
}
.row{
	flex-flow: row nowrap;
}
.column{
	flex-flow: column nowrap;
}
.unbold {
    font-weight: normal;
}
.dropshadow{
    text-shadow: 2px 2px 2px black;
}
.left {
    align-self: flex-start;
}
.right {
    align-self: flex-end;
}
.tcenter{
    text-align: center;
}
.underline{
    text-decoration: underline;
}
.NoUnderline{
    text-decoration: none;
}
.w25 {
    width: 25%;
    margin-left: 37.5%;
    margin-right: 37.5%;
}
.w50 {
    width: 50%;
    margin-left: 25%;
    margin-right: 25%;
}
.w75 {
    width: 75%;
    margin-left: 12.5%;
    margin-right: 12.5%;
}
.hline {
    height: 1px;
    background-color: var(--FontColor);
}
@media (max-width: 800px){
	*{
		flex-direction: column;
	}
	nav{
		width: 60vw;
	}
	nav ul{
		margin: auto;
		min-width: max-content;
		width: 100%;
		min-height: inherit;
		flex-direction: column;
		display: none;
		background: black;
		border: none;
		text-align: center;
		align-content: center;
		align-items: center;
		justify-content: space-evenly;
		position: relative;
		z-index: 10;
	}
	nav ul li{
		padding: 0;
		justify-content: center;
		z-index: 10;
	}
	nav ul li a{
		display: flex;
		padding: 1vh;
		margin: auto;
	}
	nav ul li:hover ul {
		display: none;
	}
	nav img {
		display: block;
		z-index: 11;
	}
	.cell {
		min-width: 100%;
	}
	.ProImg{
		height: calc(404/604*99vw);
	}
	.row{
		flex-direction: column;
	}
}